home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
System
/
Goodies
/
CDiagnosticChore.c
< prev
next >
Wrap
Text File
|
1990-11-18
|
378b
|
15 lines
/* CDiagnosticChore - a diagnostic-printing chore. */
#include <TCL>
#include "GLOBAL.h"
#include "CDiagnosticChore.h"
#include "CMIDI.h"
#include "CDiagnostic.h"
OVERRIDE void CDiagnosticChore::Perform(long *maxSleep)
{
gMIDI->StatusCheck(); /* Make sure the MIDI module's tucked in. */
g_UpdateDiags(); /* in CDiagnostic. */
*maxSleep = 6L; /* 0.1 sec max. */
}